home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / perl / 5.10.0 / locale.pm < prev    next >
Text File  |  2009-10-01  |  168b  |  16 lines

  1. package locale;
  2.  
  3. our $VERSION = '1.00';
  4.  
  5. $locale::hint_bits = 0x4;
  6.  
  7. sub import {
  8.     $^H |= $locale::hint_bits;
  9. }
  10.  
  11. sub unimport {
  12.     $^H &= ~$locale::hint_bits;
  13. }
  14.  
  15. 1;
  16.